home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / hfake / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-17  |  148 b   |  6 lines

  1. /* dummy stddef.h, in case you don't have one */
  2.  
  3. #ifndef offsetof
  4. #define offsetof(type, mem) ((char *)&((type *)NULL)->mem - (char *)NULL)
  5. #endif
  6.